home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / bbs / pm233.zip / DEFAULTS.PM~ < prev    next >
Text File  |  1992-08-09  |  3KB  |  74 lines

  1. ; DEFAULTS.PM
  2. ;
  3. ; Sample default configuration file for Pmail 2.3.
  4. ; (c) 1992, David Harris, All Rights Reserved.
  5. ;
  6. ; NOTE: this file has been renamed to DEFAULTS.PM~ in the
  7. ; distribution archive to avoid potential problems in
  8. ; installation. If you use this file, make sure you
  9. ; rename it to DEFAULTS.PM.
  10. ;
  11. ; DEFAULTS.PM allows you to create a limited form of "default
  12. ; user profile". If it exists, it must be found in the same
  13. ; directory as PMAIL.EXE. It is a simple text file consisting
  14. ; of comments (any blank line, or line starting with a semi-
  15. ; colon, space or tab) and keyword/parameter sets. Parameters
  16. ; can contain "command substitutions", or special character
  17. ; sequences which are replaced with other values at run-time.
  18. ; Command substitution is discussed in detail in the User-
  19. ; defined gateway manual UDG.TXT in UDG.ZIP with this archive.
  20. ; However, you will commonly use the following substitutions:
  21. ;
  22. ;    ~8   replaced by the first 8 chars in the username
  23. ;    ~b   replaced by the user's bindery ID (a long Hex value).
  24. ;
  25. ; Pmail 2.33 recognises the following keywords:
  26. ;
  27. ;   homebox   Where the user's home mailbox should be placed.
  28. ;      The directory must exist - Pmail will not create it,
  29. ;      and may behave unpredictably if it is not present.
  30. ;
  31. ;   copyself  Y, N, or P - the user's default value for copy-
  32. ;      to-self. P forces Pmail to prompt for the value at
  33. ;      send time.
  34. ;
  35. ;   scratch   A work area, in which the user has full rights.
  36. ;      If you do not define a TMP or TEMP variable on your
  37. ;      system, you should provide a value for this, or else
  38. ;      external editors and some browser commands may fail.
  39. ;
  40. ;   password  Y or N, if the user's NetWare password should
  41. ;      be required at startup.
  42. ;
  43. ; Other values may be added in future versions.
  44.  
  45.  
  46. ; First, define a home mailbox location: in the following
  47. ; example setting, a user called DAVID will have his home
  48. ; mailbox path set to "C:\MAIL\DAVID". A user called
  49. ; TWASHINGTON will have it set to "C:\MAIL\TWASHING".
  50. ; Remember! The directory must already exist!
  51.  
  52. homebox    c:\mail\~8
  53.  
  54. ; Now, set a scratch area: in this example we'll set the
  55. ; scratch area to the user's mailbox in SYS:MAIL. Note that
  56. ; although we could use NetWare syntax for this, some
  57. ; programs might not accept it when it was passed to them,
  58. ; so we use a regular DOS path instead.
  59.  
  60. scratch    Z:\MAIL\~B
  61.  
  62. ; And last, we'll tell Pmail to prompt the user for copy-
  63. ; to-self at send time.
  64.  
  65. copyself   P
  66.  
  67. ; We could also force Pmail to verify the user's identity
  68. ; at startup by prompting for his NetWare password by adding
  69. ; the line:
  70. ;
  71. ; password    Y
  72. ;
  73. ; But we won't bother in this sample.
  74.